home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Python 1.3 / source code / Dos / make.bat < prev    next >
Encoding:
DOS Batch File  |  1995-12-17  |  318 b   |  17 lines  |  [TEXT/R*ch]

  1. @if "%1" == "win16" goto QW
  2. @if "%1" == "qw" goto QW
  3. @if "%1" == "dos32" goto GCC
  4. @if "%1" == "dj" goto GCC
  5. @
  6. @echo Must specify target for make (win16 or dos32)
  7. @goto Stop
  8. @
  9. :QW
  10. nmake -fpython.mak TARGET=win16 %2 %3 %4 %5 %6 %7 %8 %9
  11. @goto Stop
  12. @
  13. :GCC
  14. nmaker -fpython.mak TARGET=dos32 %2 %3 %4 %5 %6 %7 %8 %9
  15. @
  16. :Stop
  17.